home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Linux Cubed Series 3: Developer Tools
/
Linux Cubed Series 3 - Developer Tools.iso
/
devel
/
lang
/
eiffel
/
smalleif.97
/
se.t
/
SmallEiffel
/
lib_test
/
test_array3.e
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-05-02
|
327 b
|
25 lines
class TEST_ARRAY3
--
-- From a bug report of Cyril ADRIAN
--
creation make
feature
make is
local
ir: INTEGER_REF;
do
ir := 3; -- BUG/BUG/BUG when removed :-(
use(<<"titi">>);
use(<<1>>);
end;
use(t: ARRAY[COMPARABLE]) is
do
t.put(t.last,1)
end;
end -- TEST_ARRAY3